github.com/niko0xdev/gqlgen@v0.17.55-0.20240120102243-2ecff98c3e37/codegen/config/testdata/cfg/glob/bar/bar with spaces.graphql (about)

     1  type Query {
     2    todos: [Todo!]!
     3  }
     4  
     5  input NewTodo {
     6    text: String!
     7    userId: String!
     8  }
     9  
    10  type Mutation {
    11    createTodo(input: NewTodo!): Todo!
    12  }